(bug 7758) Added wrapper span to "templates used" explanation to allow CSS styling...
authorAryeh Gregor <simetrical@users.mediawiki.org>
Mon, 30 Oct 2006 17:18:43 +0000 (17:18 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Mon, 30 Oct 2006 17:18:43 +0000 (17:18 +0000)
RELEASE-NOTES
includes/EditPage.php

index 98295bf..b8a63bf 100644 (file)
@@ -106,6 +106,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * Made special page names case-insensitive and localisable. Care has been taken 
   to maintain backwards compatibility.
 * Used special page subpages in a few more places, instead of query parameters.
+* (bug 7758) Added wrapper span to "templates used" explanation to allow CSS
+  styling (class="mw-templatesUsedExplanation").
 
 == Languages updated ==
 
index b67e8df..4afee97 100644 (file)
@@ -1272,7 +1272,7 @@ END
                        $batch->execute();
 
                        # Construct the HTML
-                       $outText = '<br />'. wfMsgExt( 'templatesused', array( 'parseinline' ) ) . '<ul>';
+                       $outText = '<br /><span class="mw-templatesUsedExplanation">'. wfMsgExt( 'templatesused', array( 'parseinline' ) ) . '</span><ul>';
                        foreach ( $templates as $titleObj ) {
                                $outText .= '<li>' . $sk->makeLinkObj( $titleObj ) . '</li>';
                        }